home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib8
/
v_10_11
/
1011086b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
283 b
|
16 lines
static int /* status */
general_routine ()
{
if (<error condition 1>)
return (ERROR_CODE_1);
if (<error condition 2>)
return (ERROR_CODE_2);
...
<more error checking>
<finally do something>
return (STS_OK);
}